9f53e8bc9b66ae87454fde3c73f5225a8ebfcbe6,atlasdb-impl-shared/src/main/java/com/palantir/atlasdb/schema/KeyValueServiceValidator.java,KeyValueServiceValidator,validateTables,#Set#,99

Before Change


    }

    private void validateTables(Set<TableReference> tables) {
        ExecutorService executor = PTExecutors.newFixedThreadPool(threads);
        List<Future<Void>> futures = Lists.newArrayList();
        for (final TableReference table : tables) {
            Future<Void> future = executor.submit(new Callable<Void>() {

After Change


    }

    private void validateTables(Set<TableReference> tables) {
        ExecutorService executor = Tracers.wrap(PTExecutors.newFixedThreadPool(threads));
        List<Future<Void>> futures = Lists.newArrayList();
        for (final TableReference table : tables) {
            Future<Void> future = executor.submit(new Callable<Void>() {